@charset "utf-8";

header{
    width:100%; 
}
/*................*/
.header{
    padding: 10px 0px 0px;
    width:100%;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 999;   
    position: fixed;
    width: 100%;
    top: 0px;   
}
.header .header-top{
    padding: 0px 0px 15px;
    border-bottom: 1px solid;
    border-color: rgba(255,255,255,0.05);
}
.header .logo {
    padding: 0px 0px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header .logo img{
    height: 55px;
    width: auto;
    margin-right: 10px;
    transition: all .5s;  
}
.header .logo span{
    line-height: 1.0;
}
.header .logo span b{
    color: #feff00;
    font-style: italic;
    font-size: 24px;
}
.header .header-top.none{
    display: none;
}
@media(max-width:767px){
    .header .logo {
        padding: 2px 0px;
    }
    .header .logo img{ 
        height: 55px;
    }
}
.header .header-top .tel a{
    padding-top: 15px;
    color: #feff00;
    font-size: 22px;
    font-weight: 600;
}
.header .header-top .tel a span{
    color: #fff;
    font-size: 24px;
    font-weight: 300;   
}
.header .header-top .tel a i{
    font-size: 30px;
    color: #feff00;     
    font-weight: 300;
}
header .nav{
    padding: 10px 0px;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    border-bottom: 1px solid;
    border-color: rgba(255,255,255,0.05);
}
header .nav ul{   
    transition: all .5s;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}
header .nav ul>li{
    display: inline-block;   
    padding: 0px 15px;    
}
header .nav ul>li.search{
    padding: 0px 0px;
}
header .nav ul>li>a{   
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    color: #feff00;
    font-weight: 400;
    padding: 0px 0px;   
    line-height: 55px;
    white-space: nowrap;
    transition: all 0.3s;
}
@media (max-width: 1200px){
    header .nav ul>li{        
        padding: 0px 10px;    
    }
    header .nav ul>li>a{ 
        font-size: 16px; 
    }
}
header .nav ul>li a:hover,header .nav ul>li.active a{
    color: #fff;
    font-weight: 600;
}
header .nav ul>li:hover a>b{
    transform: rotateY(0);
    -webkit-transform: rotateY(0);
    -o-transform: rotateY(0);
}
header .nav .sub-menu {
    display: block;
    position: absolute;
    left: 0%;
    opacity: 0;
    top: 71px;   
    background: #f5f5f5;
    border-radius: 0px;
    transition: .3s;  
    z-index: 1;
    height: 0;
    width: 100%;
    overflow: hidden;        
}
header .nav ul li:hover .sub-menu{
    opacity: 1.0;
    height: auto;
    z-index: 15;
    padding: 2.5em 0;
}
header .nav ul li:hover .sub-menu ul li h5{
    height: 50px;
}
header .nav ul li:hover ul.xmenu li a{
    height: 34px;
}
header .nav .sub-menu ul{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
header .nav .sub-menu ul li {
    /*-ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;*/
    display: block;
    width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}
header .nav .sub-menu ul li h5{
    font-size: 18px;
    font-weight: normal;
    color: #000;
    text-align: center;
    height: 0px;
    line-height: 50px;
    border-bottom: 1px solid #b3b3b3;
    letter-spacing: 3px;
    margin: 10px 0px;
    transition: all 0.3s;
}

.has-children:not(.sub-menu) {
    position: relative;
}
header .nav ul.submenu {
    display: none;
    position: absolute;
    left: 0%;
    top: 100%;
    margin-left: -15px;
    min-width: 120px;
    background: #fff;
    border-radius: 2px;    
}
header .nav ul.submenu li{width:100%; padding: 0px 0px; position: relative; border-bottom:1px solid rgba(0,0,0,.05);}
header .nav ul.submenu li a{
    font-weight: 300;    
    display:block;font-size:14px; 
    color:#444; line-height:20px;
    padding:10px 25px; text-align:left;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header .nav ul.submenu li a:hover{color:#000; background:#feff00;}
header .nav ul>li:hover ul.submenu{
    display: block;
}
header .nav ul.xmenu{   
    margin-left: -15px;
    margin-right: -15px;
}
header .nav ul.xmenu li{
    position: relative; 
}
header .nav ul.xmenu li a{
    display: block;
    color: #2b2b2b;
    text-align: left;
    font-size: 14px; 
    height: 0px;   
    line-height: 34px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;    
    font-weight: normal;
    transition: all 0.3s;
}
header .nav ul.xmenu li a:hover{
    color: #000;
    padding-left: 15px;
    background: #feff00;
}
header .nav ul.xmenu li:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
    margin-top: 5px;
    position: absolute;
    right: 25px;
    top: 1px;
}
.header .nav .logo{
    display: none;
}
.header.on .nav .logo{
    display: block;
}
.header.on{
    position: fixed;
    background: rgba(0,0,0,0.85);
    padding: 10px 0px 0px;
}

@media(max-width:767px){
    .header.on .header .logo img{
        height: 55px;
    }
}
@media (max-width: 1199px){
    .header .nav>ul>li{
        padding-left:10px;
    }
}
@media (max-width: 992px){  
    .header{
        position: relative;
        padding: 10px 0px;
        background: rgba(0,0,0,1.0);
    }
    .header .header-top .tel {
        padding-top: 0px;
    }
    .header .header-top .tel a, .header .header-top .tel a i {
        font-size: 20px;
    }
    .header .header-top {
        padding: 0px 0px 0px;
    }
    header .nav ul{
        display: block;
    }    
    .header.on .logo img, .header .logo img{
        height:40px !important;
    }    
    header .nav{
        position: absolute;
        left:-100vw;
        top:64px;
        width:70%;
        height:calc(100vh - 60px);
        background:#000;        
        z-index:999;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        padding-top:20px;
    }
    header .nav.show{
        left:0;
        transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
    }
    header .nav ul li{
        display: block !important; 
        padding:0 20px;
    }
    header .nav ul li a{
        color:#fff;
        font-size: 14px;
    }
    header .nav>ul>li::before,
    header .nav>ul>li:last-child::after{
        border-left: 0px dotted #c1c1c1;
    } 
}
@media(max-width:1200px){
    .header .nav .submenu li {
        display: none !important;
    }
}
/* banner */
.banner{
    position: relative;
    overflow: hidden;
}
.banner-txt{
    position: absolute;
    width: 100%;
    color: #feff00;
    line-height: 1.1;
    top: 32%;
    z-index: 99;  
}
.banner-txt h3{
    font-size: 40px;
    font-weight: 400;
}
.banner-txt h3 span{
    display: block;
    font-weight: 800;
    font-size: 64px;
}
.common{
    padding-top: 95px;
    padding-bottom: 95px;
}
.title{
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.1;   
    position: relative;    
    margin-bottom: 30px;
}
.title span{
    font-size: 45px;
    color: #d9d9d9;
    font-weight: 900; 
}
.title:after {
    display: block;
    content: "";
    width: 50px;
    height: 2px;
    background: #d6d6d6;
    margin: 5px 0 10px;
}
.title .more{
    float: right;
    font-weight: 300;
    font-size: 25px;
    transition: all 0.3s ease-in-out;    
}
.title .more:hover{padding-right: 5px;}

.pro-info{font-size: 18px; line-height: 1.4; margin-bottom: 30px;}
@media (max-width:767px){
    .common{
       padding-top:30px;
       padding-bottom:30px;
    }
    .title{
        font-size: 20px;
        padding-bottom: 0px;
    }
    .title span {
        font-size: 24px;
    }    
    .title .more{ 
        font-size: 16px;
    }
    .pro-info {
        font-size: 14px;
    }
    .banner-txt h3{
        font-size: 16px;
    }
    .banner-txt h3 span{
        font-size: 20px;
    } 
}
/*产品*/
.product{
    background: #f4f5f6;
    position: relative;
    overflow: hidden;   
}
.product .title .more{
    font-size: 18px;
    font-weight: 600;
}
.product .product-box{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.product .product-box li.nav-type{
    padding-top: 20px;
    width: 24%;
    background: #000;
}
.product .product-box .tab-nav{    
    padding: 30px 30px;
    background: #000;
}
.product .product-box .tab-nav li a {
    display: block;
    color: #000;
    padding: 15px 10px 15px 20px;
    text-align: left;
    line-height: 1.3;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    background: #feff00;
    border-bottom: 2px solid #2b2b2b;
}
.product .product-box .tab-nav li.active a, .product .product-box .tab-nav li a:hover {
    color: #fff;
    background: #6c5d00;
}
.product .product-box li.pro-type{    
    width: 74%;
}
/*产品特点*/ 
.features{
    background: #f4f5f6;
}
.features .title{
    font-size: 50px;
}
.features .title span{
    font-size: 35px;
}
.features .title:after{
    margin: 5px auto 50px;
}
.features .features-box{
    background: url(../img/features.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}
.features .features-nav{    
    padding: 0px 0px;
    background: #2b2b2b;
}
.features .features-nav li{
    width: 100%;
}
.features .features-nav li img{    
    width: auto;
    transition: all .5s;
}
.features .features-nav li img.ficon2{
    width: 0;
}
.features .features-nav li.cur img.ficon2{
    width: auto;
}
.features .features-nav li.cur img.ficon1{
    width: 0;
}
.features .features-nav li.cur a{
    background: #000;
    color: #fff;
}
.features .features-nav li a{
    display: block;
    padding: 18px 10px 18px 20px;   
    line-height: 1.3;
    font-size: 18px;
    color: #000; 
    position: relative;
    background: #feff00;
    font-weight: 600;    
    border-bottom:1px solid #bba200;
    transition: all .5s;
}
.features .features-nav li:last-child a{
    border-bottom: 0px;
}
.features-r{
    position: absolute;
    top: 0px;
    opacity: 0;
    transform: scale(0.0);
    color: #fff;
    transition: all .5s;
}
.features-r ul{
    display: flex;
    align-items: center;
}
.features-r.cur{
    position: relative;
    opacity: 1.0;
    transform: scale(1.0);
}
.features-r .overview{
    font-size: 16px;
}
.features-r .overview h5{
    font-size: 35px;
    font-weight: 800;
}
@media (max-width:991px){
    .features .features-nav li img,.features .features-nav li.cur img.ficon2{
        width: 25px;
    }
    .features .features-nav li a{
        font-size: 14px;
    }
}
/*产品栏目列表*/
.product-nav {
    background: #fff;
}
/*HOT PRODUCTS*/
.project{
    overflow: hidden;   
}
.project .container-fluid{
    overflow: visible;
}
.project-img{
    background: url(../img/top-right-arrow.png) no-repeat top 25px right 25px #000;
}
.project-img img,.case-img img{
    opacity: 0.7;
    transition: all .5s;
}
.project-img:hover img,.case-img:hover img{
    opacity: 0.95;
}
.project-img h5{
    position: absolute;
    color: #fff;
    width: 100%;
    font-weight: 200;
    text-transform: uppercase;
    bottom: 0px;
    padding: 35px;
    font-size: 24px;
}
.project-img h5 span{
    display: block;
    font-size: 32px;
    font-weight: 800;
}
.project-img h5 span:after {
    display: block;
    content: "";
    width: 70px;
    height: 3px;
    background: #feff00;
    margin: 15px 0;
}
.project-img h4{
    position: absolute;
    color: #fff;
    width: 100%;
    top: 0px;
    padding: 35px;
    font-size: 18px;
    font-weight: 200;
    letter-spacing: -.2px;
}
.project-img h4 span{
    font-weight: 600;
}

.case .swiper-container .swiper-wrapper{
    -webkit-transition-timing-function: linear; /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.case-con{
	background: #f4f5f6;
	padding: 30px;
    color: #2b2b2b;
}
.case-con h5{ 
    font-size: 20px;
    font-weight: 600;
}
.case-con h5:after {
    display: block;
    content: "";
    width: 40px;
    height: 2px;
    background: #d7ba00;
    margin: 10px 0;
}
.case-con .more{ 
    font-size: 20px;
    font-weight: 600;
    color: #c8c8c8;
}
@media (max-width:991px){
    .features .title {
        font-size: 20px;
    }
    .features .title span {
        font-size: 24px;
    }
    .project-img h5,.project-img h4{        
        padding: 15px;
        font-size: 15px;
    }
    .project-img h5 span {
        font-size: 20px;
    }
    .product .product-box li.pro-type {
        width: 100%;
    }
    .case-con {
        padding: 15px;
    }
    .case-con .case-desc{
        overflow: hidden;
        text-overflow: -o-ellipsis-lastline;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .case-con .more,.case-con h5{
        font-size: 14px;
    }
}
/* 优势*/
.service{
    background: #000;    
    position: relative;
    overflow: hidden;
}
.service .title{
    color: #fff;
    margin-bottom: 0px;
}
.service .title span{
    color: #feff00;
}
.service .title:after {    
    background: #feff00;
}
.service .stitle{
    color: #fff;
    font-size: 26px;
    line-height: 1.0;
    margin-bottom: 30px;
}
.service .stitle span{
    font-size: 45px;
    font-weight: 800;
    display: block;
}
.service ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #fff;
}
.service ul li{
    width: 20%;   
    position: relative;
    padding: 40px 40px;
    border-right: 1px solid #f4f5f6;
    transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}
.service ul li h5{ 
    font-size: 26px; 
    margin: 10px 0px;
    font-weight: 800;    
}
.service ul li h5 span{
    display: block;
    font-weight: 200;
    color: #b8b8b8;
    font-size: 16px;
    text-transform: uppercase;
}
.service ul li .num{    
    line-height: 1;
    font-size: 60px;   
    color: #cdcdcd;   
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 45px;   
}
.service ul li h5 span:before{
    content: "";
    width: 30px;
    height: 2px;
    background: #d7ba00;
    display: block;
    margin: 5px 0;
}
@media (max-width:991px){ 
    .service .stitle{
        font-size: 16px;
    }
    .service .stitle span{
        font-size: 20px;
    }
    .service ul li h5 span{
        display: none;
    }
    .service ul li {
        width: 20%;
        padding:10px 10px;
        font-size: 14px;
    }
    .service ul li h5{
        width:100%;
        font-size: 12px;
    } 
    .service ul li .num {
        font-size: 30px;
    }
}
.message-con{
    background: #feff00;
    padding: 40px 40px;
    margin-top: 1px;
}
.msg-tel{
    line-height: 1.0;
    font-size: 16px;   
}
.msg-tel span{
    font-size: 30px;
    font-weight: 900;
}
.msg-tel i{
    font-size: 50px;
    font-weight: 900;
    float: left;
    margin-top: -5px;
}
@media (max-width:991px){     
    .message-con {    
        padding: 15px 15px;
    }
    .message-con .msg-title{
        font-size: 20px;
    }
    .msg-tel{
        margin-top: 15px;
    }
    .msg-tel span {
        font-size: 20px;
    }    
}
/*首页关于我们*/
.about{
    position: relative;
    background: #f4f5f6;
}
.about:before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 0;
    background: #fff;
    width: 100%;
    height: 30%;
}
.about .atitle{
    font-size: 30px;    
    line-height: 1;
    font-weight: 300;
    margin-bottom: 30px;
}
.about .atitle strong{
    display: block;
    font-size: 38px;    
    font-weight: 900;
}

.about .about-box{    
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.about ul.about-box li {
    width: 49%;
    position: relative;
}
.about .about-txt{ 
    font-size: 16px;
    padding: 0px 0px 30px;  
}

.about .more{
    font-size: 25px;
    line-height: 1.0;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;   
}
.sign{
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.sign li{
    display: inline-block;
    width: auto !important;
}
.ny-about .sign{
    position: relative;
    margin-top: 40px;  
    width: 100%;
    display: block;
}
.sign h5,.sign h5 span b{
    font-size: 18px;
    color: #999999;
    font-weight: bold;
}
.sign h5 span{
    font-size: 36px;
    color: #2b2b2b;
    font-weight: 900;
}
.sign h5:before{
    content: "";
    display: block;
    background: #ff1c1c;
    width: 25px;
    height: 3px;
    transition: all 0.6s;
    margin: 5px 0px;
}
.about .about-img img,.ny-about .about-img img{ 
    max-width: 100%;
    margin: 10px 0px;
}
.ny-about .about-img{
    margin-top: 40px;
    margin-bottom: 40px;
}
.imglist{
    position: relative;    
    padding-bottom: 95px;
}
.imglist .swiper-slide{
	background: #000;
	overflow: hidden;
}
.imglist img{    
    width: 100%;
    transition: all .3s ease-out,right .2s ease-out;
}
.imglist .swiper-slide:hover img{
	transform: scale(1.1);
	opacity: 0.8;
}
.imglist:before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0px;
    z-index: 0;
    background: #feff00;
    width: 100%;
    height: 65%;
}
@media (max-width:992px){    
    .about{        
        background:#fff;
    }
    .about ul.about-box li {
        width: 100%;
    }
    .about .sign {
        position: relative;
        width: auto;
    }
    .sign h5 {
        font-size: 14px;        
    }
    .sign h5 span {
        font-size: 20px;
    }
    .about .atitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .about .atitle strong {
        font-size: 18px;
    }
    .about .more {
        font-size: 16px;
    }     
    .about .about-txt{ 
        font-size: 14px;
        padding: 0px 0px 20px;        
    } 
}
.cer-img{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 16px;
    margin-bottom: 95px;
}
@media (max-width:991px){
    .cer-img{
        margin-bottom: 30px;
    }
}
/*优势*/
.Advantage{
    background: #f4f5f6;   
}
.Advantage .title{
    font-size: 55px;
    color: #d9d9d9;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
}
.Advantage .title span{
    font-size: 60px;
    color: #2b2b2b;
    font-weight: 400;
    display: block;
}
.Advantage .title span b{
    font-weight: 800;
}
.Advantage  .title:after{
    background: #d7ba00;
    margin: 5px auto 10px;
}
.Advantage .adv-title{
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.Advantage .Advantage-box{
    overflow: hidden;
    transition: all 0.6s;
    position: relative;
}
.Advantage .Advantage-box .adv-img{
    position: absolute;
    width: 50%;
    right: 0px;
    overflow: hidden;
}
.Advantage .Advantage-box .adv-img img{
    transition: all 0.6s;
}
.Advantage .Advantage-box .adv-img:hover img{
    transform: scale(1.1);
}
.Advantage .Advantage-box:nth-child(2n+1) .adv-img{
    right: auto;
    left: 0;
}
.Advantage .Advantage-box ul{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
.Advantage .Advantage-box:nth-child(2n+1) {   
    background-position: left center;
}
.Advantage .Advantage-box:nth-child(2n+1) ul{
    flex-direction: row-reverse;
}
.Advantage ul li{
    width: 60%;
}
.Advantage .Advantage-content{
    background: #fff;
    padding:50px;
    margin: 7% 0px;
    position: relative;
    z-index: 9;
}
.Advantage .Advantage-content img{
    width: 90%;
    max-width: 100%;
    padding-right: 5%;
}
.Advantage .Advantage-content ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0px;
}
.Advantage .Advantage-content ul li:first-child{
    width: 22%;
}
.Advantage .Advantage-content ul li:first-child:after{
    content: "";
    position: absolute;
    right: 2%;
    top: 7%;
    background: #d0d0d0;
    width: 2px;
    height: 85%;
    transition: all 0.6s;
    margin: 0px 0px;
}
.Advantage .Advantage-content ul li{
    width: 76%;
    position: relative;
}
.Advantage .Advantage-content ul li h5{
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 10px;
}
.Advantage .Advantage-content ul li strong{
    color: #ff0000;
}
.Advantage .Advantage-box:nth-child(2n+1) ul .Advantage-content ul{
    flex-direction: row;
}
@media (max-width:991px){
    .Advantage .title {
        font-size: 20px;
    }
    .Advantage .title span {
        font-size: 24px;
    }
    .Advantage .Advantage-box .adv-img{
        width: 100%;
    }
    .Advantage ul li {
        width: 100%;
    }
    .Advantage .Advantage-content {      
        padding: 15px;
        margin: 7% 0px;
    }
    .Advantage .Advantage-content ul li h5 {
        font-size: 16px;
    }
}
/*战略合作*/
.cooperation{
    background: #000;
    color: #fff;
}
.cooperation .title span{
    color: #feff00;
}
.cooperation .title .more{
    color: #fff;    
}
.cooperation .cooper-img{
    text-align: center;
    margin: 10px 0px;
    padding: 2px 25px;
    background: #fff;
    overflow: hidden;
}
.cooperation .cooper-img img{
    width: auto;
    max-width: 100%;
    opacity: 1.0;    
    transition: all 0.6s;
}
.cooperation .cooper-img:hover{
    box-shadow: 10px 10px 20px 0 rgba(0,0,0,.3);
}
.cooperation .cooper-img:hover img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
/*展会  新闻 */
.trade{
    background: #fff;
    overflow: hidden;
}
.trade .trade-box{
    background: url(../img/top-right-black-arrow.png) no-repeat top 20px right 20px #fff;
    border: 1px solid #e7e7e7;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}
.trade .trade-box li{
    width: 49%;
    overflow: hidden;
    position: relative;
}
.trade .trade-box li .img img{    
    width: 100%;
    transition: all .3s ease-out,right .2s ease-out;
}
.trade .trade-box li:hover img{
	transform: scale(1.1);
	opacity: 0.8;
}
.trade .t-time{
    color: #a7a7a7;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.trade .t-title{
    position: absolute;
    bottom: 0px;
    width: 100%;
    color: #a7a7a7;
    font-size: 18px;   
}

@media (max-width:991px){    
    .trade .trade-box {
        padding: 0px;
        margin-bottom: 15px;
    }
    .trade .t-title,.trade .t-time{
        font-size: 14px;
    }    
}